home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000246_fdc@columbia.edu_Sat Dec 15 13:21:49 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  61 lines

  1. Article: 13071 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: C-Kermit 8.0 files/installation?
  6. Date: 15 Dec 2001 13:14:48 -0500
  7. Organization: Columbia University
  8. Lines: 44
  9. Message-ID: <9vg3uo$l6p$1@watsol.cc.columbia.edu>
  10. References: <9vb3i1$989$1@watsol.cc.columbia.edu> <GoD8FM.xu@fcshome.stoneham.ma.us>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1008440089 20303 128.59.39.139 (15 Dec 2001 18:14:49 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 15 Dec 2001 18:14:49 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13071
  16.  
  17. In article <GoD8FM.xu@fcshome.stoneham.ma.us>,
  18. fred smith  <fredex@fcshome.stoneham.ma.us> wrote:
  19. : Frank da Cruz <fdc@columbia.edu> wrote:
  20. : > I'm still in a quandary about how to package C-Kermit 8.0.
  21. : > Previously it came with all sorts of .ini, .txt, and other files,
  22. : > which few people wanted or knew what to do with.
  23. : I've always had a couple of issues with the way C-Kermit is distributed:
  24. : 1.) all the files in one big directory. Breaking them up in to a few
  25. : subdirectories would make a lot more sense (someone else in this thread
  26. : mentioned VAX-isms, is this perhaps what he was referring to?). E.g.,
  27. : the top level might have the makefile and sources, a subdir for docs,
  28. : another subdir for ini files/samples, another subdir for scripting
  29. : examples/tools, etc.
  30. This is an option with the new "make install" target:
  31.  
  32.   make DESTDIR=/opt/kermit BINDIR=/bin SRCDIR=/src INFODIR=/doc install
  33.  
  34. : 2. The filenames, especially for the human-readable files, are weird and
  35. : anything but understandable to someone who isn't in the know (hence the
  36. : suggestion above for a 'manifest'). I understand we're trying to fit
  37. : into brain-damaged filesystems that only support short names, but....
  38. There's a 20-year history behind those names, but worse than that, there
  39. are innumerable references to them.  Changing the names and all the
  40. references would be a very big job, and we have plenty of other big jobs
  41. that are more urgent.  By the way, the strange naming conventions are not
  42. only so the names will fit on short-filename systems, but also to keep
  43. related files grouped together and easily selected by simple wildcards when
  44. they are all collected into a single flat file system.  An example of such
  45. a system is the industry standard ANSI Labeled Format D tape, which to this
  46. day is the only cross-platform tape format.  Granted we don't do a much
  47. tape distribution any more but now you know the history :-)
  48.  
  49. : I don't mind the size of the archive, it's not that awfully big as source
  50. : packages go these days. True, it won't fit onto one floppy, but I doubt
  51. : it would even if all the "fluff" was removed.
  52. Well, let's try the new arrangement I proposed yesterday, and the new
  53. "make install" target.  It's pretty simple, yet pretty flexible.
  54.  
  55. - Frank
  56.